home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / AddOns / Delphi 5 Companion Tools CD / FreeWare / EPHINTS / EPHINTS.ZIP / Unit2.pas < prev   
Encoding:
Pascal/Delphi Source File  |  1999-07-13  |  538 b   |  33 lines

  1. unit Unit2;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   StdCtrls, EPHints;
  8.  
  9. type
  10.   TForm2 = class(TForm)
  11.     Edit1: TEdit;
  12.     EPHints1: TEPHints;
  13.     procedure FormClose(Sender: TObject; var Action: TCloseAction);
  14.   private
  15.     { Private declarations }
  16.   public
  17.     { Public declarations }
  18.   end;
  19.  
  20. var
  21.   Form2: TForm2;
  22.  
  23. implementation
  24.  
  25. {$R *.DFM}
  26.  
  27. procedure TForm2.FormClose(Sender: TObject; var Action: TCloseAction);
  28. begin
  29.   Action:=caFree;
  30. end;
  31.  
  32. end.
  33.